home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / s-widllu.ads < prev    next >
Text File  |  1996-01-30  |  2KB  |  42 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                       S Y S T E M . W I D _ L L U                        --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  This package contains the routine used for WIdth attribute for all
  27. --  non-static unsigned integer (modular integer) subtypes. Note we only
  28. --  have one routine, since this seems a fairly marginal function.
  29.  
  30. with System.Unsigned_Types;
  31.  
  32. package System.Wid_LLU is
  33. pragma Pure (Wid_LLU);
  34.  
  35.    function Width_Long_Long_Unsigned
  36.      (Lo, Hi : System.Unsigned_Types.Long_Long_Unsigned)
  37.       return   Natural;
  38.    --  Compute Width attribute for non-static type derived from a modular
  39.    --  integer type. The arguments Lo, Hi are the bounds of the type.
  40.  
  41. end System.Wid_LLU;
  42.